Show All

Style Property

       

Returns or sets the marker style for the specified series or chart. Read/write ChartMarkerStyleEnum.

expression.Style

expression   Required. An expression that returns a ChMarker object.

Example

This example sets the marker style for the specified series.

Sub SetMarkerStyle()

   Dim chConstants

   Set chConstants = ChartSpace1.Constants

   ChartSpace1.Charts(0).SeriesCollection(0).Marker _
               .Style = chConstants.chMarkerStyleStar

End Sub